.searchable-dropdown {
    position: relative;
    width: 100%;
}

.searchable-dropdown-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background: #ffffff;
    cursor: text;
}

.searchable-dropdown-input:focus {
    outline: none;
    border-color: #be131b;
    box-shadow: 0 0 0 2px rgba(190, 19, 27, 0.15);
}

.searchable-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 220px;
    overflow-y: auto;
    margin-top: 4px;
    display: none;
}

.searchable-dropdown-item {
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease;
}

.searchable-dropdown-item:hover {
    background: #f5f5f5;
}

.searchable-dropdown-item.hidden {
    display: none;
}

.searchable-dropdown-empty {
    padding: 10px 12px;
    font-size: 13px;
    color: #999;
    display: none;
}

.searchable-dropdown-original {
    display: none !important;
}
